Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@glimmer/validator
Advanced tools
@glimmer/validator is a package used in the Glimmer.js ecosystem to provide reactive state management and validation. It allows developers to create reactive properties and track changes to them, ensuring that the UI stays in sync with the underlying data model.
Tracking Changes
This feature allows you to track changes to properties. When a tracked property changes, any dependent properties or computations are automatically updated.
const { tracked } = require('@glimmer/validator');
class Person {
@tracked firstName;
@tracked lastName;
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
get fullName() {
return `${this.firstName} ${this.lastName}`;
}
}
let person = new Person('John', 'Doe');
console.log(person.fullName); // John Doe
person.firstName = 'Jane';
console.log(person.fullName); // Jane Doe
Validation
This feature allows you to validate properties using custom logic. The `@validate` decorator can be used to create computed properties that validate the state of other properties.
const { tracked, validate } = require('@glimmer/validator');
class User {
@tracked email;
constructor(email) {
this.email = email;
}
@validate
get isValidEmail() {
return /^[^@]+@[^@]+\.[^@]+$/.test(this.email);
}
}
let user = new User('test@example.com');
console.log(user.isValidEmail); // true
user.email = 'invalid-email';
console.log(user.isValidEmail); // false
MobX is a state management library that makes it simple to connect the reactive data of your application with the UI. It provides similar reactive state management capabilities as @glimmer/validator but is more widely used and has a larger community.
Vue.js is a progressive JavaScript framework for building user interfaces. It includes a reactivity system that is similar to @glimmer/validator's tracking and validation features. Vue's reactivity system is more integrated into the framework, providing a more comprehensive solution for building reactive applications.
Redux is a predictable state container for JavaScript apps. While it does not provide the same automatic reactivity as @glimmer/validator, it offers a robust way to manage application state and can be combined with libraries like React to achieve similar reactive behavior.
v0.86.0 (2023-12-20)
@glimmer/debug
, @glimmer/runtime
, @glimmer/util
@glimmer/validator
@glimmer/runtime
@glimmer/runtime
@glimmer/debug
, @glimmer/destroyable
exports
config for @glimmer/destroyable and @glimmer/debug (@NullVoxPopuli)@glimmer-workspace/build
@glimmer-workspace/benchmark-env
, @glimmer-workspace/build
, @glimmer-workspace/integration-tests
, @glimmer-workspace/test-utils
, @glimmer/compiler
, @glimmer/debug
, @glimmer/destroyable
, @glimmer/encoder
, @glimmer/global-context
, @glimmer/interfaces
, @glimmer/local-debug-flags
, @glimmer/manager
, @glimmer/node
, @glimmer/opcode-compiler
, @glimmer/owner
, @glimmer/program
, @glimmer/reference
, @glimmer/runtime
, @glimmer/syntax
, @glimmer/util
, @glimmer/validator
, @glimmer/vm-babel-plugins
, @glimmer/vm
, @glimmer/wire-format
@glimmer/reference
FAQs
Objects used to track values and their dirtiness in Glimmer
The npm package @glimmer/validator receives a total of 272,940 weekly downloads. As such, @glimmer/validator popularity was classified as popular.
We found that @glimmer/validator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 14 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.